e7f46d1e8bece38b722cdfc9141643c71bef2f0c,src/com/redhat/ceylon/compiler/java/codegen/ParameterDefinitionBuilder.java,ParameterDefinitionBuilder,build,#,106
Before Change
annots = annots.appendList(gen.makeAtSequenced());
}
if (defaulted) {
annots = annots.appendList(gen.makeAtDefaulted());
}
if (typeAnnos != null) {
annots = annots.appendList(typeAnnos);
After Change
throw new IllegalStateException();
}
built = true;
ListBuffer<JCAnnotation> annots = ListBuffer.lb();
if (!noAnnotations && !ignored) {
annots.appendList(gen.makeAtName(name));
if (sequenced) {
annots.appendList(gen.makeAtSequenced());
}
if (defaulted) {
annots.appendList(gen.makeAtDefaulted());
}
if (typeAnnos != null) {
annots.appendList(typeAnnos);